[1] 2
Fabricio Almeida-Silva
VIB-UGent Center for Plant Systems Biology
Quarto enables you to weave together content and executable code into a finished presentation. To learn more about Quarto presentations see https://quarto.org/docs/presentations/.
When you click the Render button a document will be generated that includes:
When you click the Render button a presentation will be generated that includes both content and the output of embedded code. You can embed code like this:
List:
Right column:
List:
This text somehow relates to the figure to the right.
This is how you include footnotes1 at the bottom part of the page in slides.
library(ggplot2)
library(palmerpenguins)
ggplot(data = penguins, aes(x = species, y = flipper_length_mm)) +
geom_boxplot(aes(color = species), width = 0.3, show.legend = FALSE) +
geom_jitter(
aes(color = species), alpha = 0.5, show.legend = FALSE,
position = position_jitter(width = 0.2, seed = 0)
) +
scale_color_manual(values = c("darkorange","purple","cyan4")) +
labs(x = "Species", y = "Flipper length (mm)") +
theme_bw()```{r output_beside}
#| output-location: column
library(ggplot2)
library(palmerpenguins)
ggplot(data = penguins, aes(x = species, y = flipper_length_mm)) +
geom_boxplot(aes(color = species), width = 0.3, show.legend = FALSE) +
geom_jitter(
aes(color = species), alpha = 0.5, show.legend = FALSE,
position = position_jitter(width = 0.2, seed = 0)
) +
scale_color_manual(values = c("darkorange","purple","cyan4")) +
labs(x = "Species", y = "Flipper length (mm)") +
theme_bw()
``````{r code_highlighting}
#| code-line-numbers: 5-8
library(ggplot2)
library(palmerpenguins)
ggplot(data = penguins, aes(x = species, y = flipper_length_mm)) +
geom_boxplot(aes(color = species), width = 0.3, show.legend = FALSE) +
geom_jitter(
aes(color = species), alpha = 0.5, show.legend = FALSE,
position = position_jitter(width = 0.2, seed = 0)
) +
scale_color_manual(values = c("darkorange","purple","cyan4")) +
labs(x = "Species", y = "Flipper length (mm)") +
theme_bw()
```This is an example panel set describing bill lengths of palmer penguins:
Fabricio Almeida-Silva @almeidasilvaf